home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJTST111.ZIP / tests / t08.c < prev    next >
C/C++ Source or Header  |  1993-06-26  |  106b  |  12 lines

  1. void foo(int x)
  2. {
  3.   printf("foo!\n");
  4. }
  5.  
  6. main()
  7. {
  8.   printf("hello\n");
  9.   foo(7);
  10.   return 4;
  11. }
  12.